home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / docs / help / adosguide.lha / ADOSguide / ADOS commands / If < prev    next >
Encoding:
Text File  |  1999-05-16  |  770 b   |  34 lines

  1.                          --AMIGADOS GUIDE V2.6--
  2.                                     IF
  3.  
  4.  
  5.    USE:
  6.    If is the main command used in the script languages condition testing
  7.    process.
  8.  
  9.    PATH:
  10.    Internal
  11.  
  12.    SYSTEM:
  13.    2.0 (enhanced), 2.1, 3.0
  14.  
  15.    EXAMPLES:
  16.    IF <condition> (WARN, FAIL, etc..)
  17.    ---      ADOS commands
  18.    ELSE
  19.    ---      ADOS commands
  20.    ENDIF
  21.  
  22.    NOTES:
  23.    The condition can be one of the options listed below. If the condition
  24.    succeeds, control is passed to the next line until either an ENDIF is
  25.    met or an ELSE is met. When ENDIF is encountered control jumps to the
  26.    next level (if one exists). If ELSE is met, control jumps to the next
  27.    ENDIF.
  28.  
  29.    Options:
  30.    - STRING   - ERROR   - VAL
  31.    - NOT      - FAIL 
  32.    - WARN     - EXISTS
  33.  
  34.